home *** CD-ROM | disk | FTP | other *** search
/ The Game Master (3rd Edition) / The Game Master 3rd edition.iso / files / gameture / ttowers / ttrules.bas (.txt) < prev    next >
Encoding:
GW-BASIC  |  1984-07-29  |  16.8 KB  |  263 lines

  1. 10  LPRINT "                     TRIVIAL TOWERS":LPRINT
  2. 15  LPRINT "                       VERSION 1.0":LPRINT
  3. 20  LPRINT "     Trivial Towers is an exciting way to match your wits with"
  4. 25  LPRINT "your friends and family in the computer age.  First there was"
  5. 30  LPRINT "'Go To The Head of the Class'.  Then there was 'College Bowl'."
  6. 35  LPRINT "Now there is Trivial Towers!":LPRINT
  7. 40  LPRINT "OBJECT OF THE GAME:  Players must correctly answer 6 questions in"
  8. 45  LPRINT "each of the 4 categories they have selected.  A correct answer earns"
  9. 50  LPRINT "that player one floor of the 6-story tower for that category.  The"
  10. 55  LPRINT "first player to build 4 towers by correctly answering 6 questions in"
  11. 60  LPRINT "each category wins.":LPRINT
  12. 65  LPRINT "                       DIRECTIONS":LPRINT
  13. 70  LPRINT "GETTING STARTED:  Trivial Towers consists of 2 disks--the general"
  14. 80  LPRINT "Program disk and the Question and Answer disk.  (Additional Question"
  15. 90  LPRINT "and Answer disks on new topics can be purchased separately.)"
  16. 100  LPRINT"     To begin, boot up your MS-DOS disk by inserting it into     "
  17. 110  LPRINT"drive A, turning on your computer, and answering the date and    "
  18. 120  LPRINT"time prompts.  Pull out the DOS disk and set it aside.  Insert   "
  19. 130  LPRINT"your BASIC disk into Drive A, type in BASIC and press the Return "
  20. 140  LPRINT"key.  After the disk drive starts spinning and the red light goes"
  21. 150  LPRINT"off, pull out the BASIC disk.  Insert the Trivial Towers Program "
  22. 160  LPRINT"disk, type RUN ''TTOWERS (Note: those are open quotation marks, "
  23. 161  LPRINT"not two apostrophes) and press the Return key.  The Program"
  24. 170  LPRINT"disk will begin spinning, and fill the screen with the Trivial   "
  25. 180  LPRINT"Towers logo while playing a tune.  After a few seconds, the screen"
  26. 190  LPRINT"will clear, and the program will ask you to insert the Questions "
  27. 200  LPRINT"disk.  Remove the Program disk from Drive A, insert the Questions"
  28. 210  LPRINT"disk, and press the Return key.":LPRINT
  29. 220  LPRINT"NUMBER OF PLAYERS:  The screen will clear, then the computer will"
  30. 230  LPRINT"ask you for the number of players.  Type in a 2,3, or 4 then press"
  31. 240  LPRINT"the Return key.  The computer will give you an error message if any"
  32. 250  LPRINT"other key is pressed and ask you to try again, so don't worry about"
  33. 260  LPRINT"hitting the wrong key.":LPRINT
  34. 270  LPRINT"NAMES OF PLAYERS:  The computer will then prompt you for the names"
  35. 280  LPRINT"of the contestants.  Type in the first name of the first player and"
  36. 290  LPRINT"press the Return key.  The computer will respond by showing you"
  37. 300  LPRINT"what your game piece looks like, and ask for the name of the next"
  38. 310  LPRINT"player.  Repeat this procedure until all players' names have been"
  39. 320  LPRINT"entered and all players have been assigned game pieces.":LPRINT
  40. 330  LPRINT"QUESTION CATEGORIES:  The screen will clear, then show you the"
  41. 340  LPRINT"categories available on this Questions disk.  Trivial Towers"
  42. 350  LPRINT"Questions disks come with 6 complete categories. (This number may"
  43. 360  LPRINT"differ if you insert a disk of questions you have written.  See  "
  44. 370  LPRINT"section entitled WRITING YOUR OWN QUESTIONS below.)  Type in the"
  45. 380  LPRINT"name of the category about which all players agree to be quizzed."
  46. 390  LPRINT"If you make an error and misspell the category name, the computer"
  47. 400  LPRINT"will ask you to try again."
  48. 430  LPRINT"     After you have picked each category, the computer will tell"
  49. 431  LPRINT"you how many questions are in that category.  The computer then asks"
  50. 440  LPRINT"you to chose which question you wish to begin with for that"
  51. 450  LPRINT"category.  This permits you to play Trivial Towers over and over"
  52. 460  LPRINT"without repeating the same questions.  Simply type in a number"
  53. 470  LPRINT"higher than the number of the last question you've seen for that"
  54. 480  LPRINT"category.  Don't worry about typing in a number too high or too"
  55. 490  LPRINT"low--the computer will note the error and ask you to try again."
  56. 500  LPRINT"(When the computer comes to the end of the question deck for that"
  57. 510  LPRINT"category, it cycles to the front of the deck and continues with"
  58. 520  LPRINT"question 1.)  Repeat this procedure until you have chosen the 4"
  59. 521  LPRINT"categories for this running of the game.  By varying the starting"
  60. 522  LPRINT"numbers, you can use the same category for all 4 of the question"
  61. 523  LPRINT"category decks, thereby 'specializing' the game.":LPRINT
  62. 530  LPRINT"PLAYING THE GAME:  After you have made all of these preliminary"
  63. 540  LPRINT"choices, the screen will clear and then show the game board.  Note"
  64. 550  LPRINT"that players begin the game in their own individual corners of the"
  65. 560  LPRINT"game board.  After everyone has found his token on the board, press"
  66. 570  LPRINT"the Return key to begin play.":LPRINT
  67. 580  LPRINT"     After the Return key is hit, the computer will roll its "
  68. 590  LPRINT"internal dice, and tell the player how many squares to move (1-6)."
  69. 600  LPRINT"The computer reminds you that it is your turn to move by listing"
  70. 610  LPRINT"your name and game token beneath the game board.":LPRINT
  71. 620  LPRINT"     The player may move Clockwise by hitting a C, counterclockwise"
  72. 630  LPRINT"(Yes, we know it's misspelled!) by hitting a K, or exit the program"
  73. 640  LPRINT"by hitting a Q.  After making your selection, press the Return key."
  74. 650  LPRINT
  75. 660  LPRINT"     If you have decided to Quit the program, the computer will ask "
  76. 670  LPRINT"you to insert the Program disk.  Pull the Questions disk from Drive"
  77. 680  LPRINT"A, insert the Program disk, and press the Return key.  The screen"
  78. 690  LPRINT"will clear, and the BASIC Ok will appear in the upper left corner."
  79. 700  LPRINT"You may now play a new game of Trivial Towers with new players and"
  80. 710  LPRINT"categories, or write your own questions (see section on WRITING "
  81. 720  LPRINT"YOUR OWN QUESTIONS below).":LPRINT
  82. 730  LPRINT"     If you have chosen a C or K, the computer will move your token"
  83. 740  LPRINT"to the correct square and ask you a question for that category."
  84. 750  LPRINT"After you have answered it orally (you may, but do not need to,"
  85. 751  LPRINT"type your answer), press the Return key."
  86. 760  LPRINT"The computer will show the correct answer, and ask if"
  87. 770  LPRINT"your answer was correct.  (Due to memory limitations of your"
  88. 780  LPRINT"computer, the Trivial Towers programmers decided not to have the"
  89. 790  LPRINT"computer remember all possible spellings and variations of the"
  90. 800  LPRINT"correct answer.  You probably would not have purchased such an"
  91. 810  LPRINT"expensive program, anyway.)":LPRINT
  92. 820  LPRINT"     If the players agree that your answer matches that of the"
  93. 830  LPRINT"computer, enter Y and press the Return key.  The computer will"
  94. 840  LPRINT"credit you with one story for your tower of that category, and"
  95. 850  LPRINT"display it inside the game board.  (The first player to build all "
  96. 860  LPRINT"four 6-story towers by correctly answering Trivial Towers questions"
  97. 870  LPRINT"wins the game.)  The computer will then re-roll its internal dice,"
  98. 880  LPRINT"and tell you how far you can move next.":LPRINT
  99. 890  LPRINT"     The computer repeats this procedure until you tell it that you"
  100. 900  LPRINT"have incorrectly answered a question.  To do so, type N and press"
  101. 910  LPRINT"the Return key.  The computer will call upon the next player to move"
  102. 920  LPRINT"his/her token, and the sequence begins anew.":LPRINT
  103. 930  LPRINT"     If you land on a purple wild card square (found only in the "
  104. 940  LPRINT"corners of the game board), the computer will ask you to pick the"
  105. 950  LPRINT"category in which you wish to be quizzed.  (Hint: It is good"
  106. 960  LPRINT"strategy to pick a category for which you have not built many"
  107. 970  LPRINT"stories.)  Enter the number (1-4) of the color of the category"
  108. 980  LPRINT"in which you wish to be quizzed, and press the Return key.  The"
  109. 990  LPRINT"computer will let you know if you pressed a key other than 1-4,"
  110. 1000  LPRINT"and ask you to try again.  If you correctly pressed a 1, 2, 3, or 4"
  111. 1010  LPRINT"the computer will ask a question from that category and play will"
  112. 1020  LPRINT"proceed as before.":LPRINT
  113. 1030  LPRINT"WANT A COPY OF THESE DIRECTIONS?  If so, turn on your printer,"
  114. 1040  LPRINT"boot up DOS and BASIC, insert the Program disk into drive A,"
  115. 1050  LPRINT"type RUN ''TTRULES (again, that's a single quotation mark) and"
  116. 1060  LPRINT"press the Return key.":LPRINT
  117. 1070  LPRINT"                    WRITING YOUR OWN QUESTIONS":LPRINT
  118. 1080  LPRINT"     Although Trivial Towers question disks bulge with over "
  119. 1090  LPRINT"2500 questions and more disks are being developed each"
  120. 1100  LPRINT"day, you may wish to 'customize' your own questions and "
  121. 1110  LPRINT"categories.":LPRINT
  122. 1120  LPRINT"    To write your own questions, boot up DOS and BASIC, insert"
  123. 1130  LPRINT"the Program disk into Drive A, type RUN ''TTENTER and press the"
  124. 1140  LPRINT"Return key.":LPRINT
  125. 1150  LPRINT"CATEGORY NAME:  The computer will ask you for the name of the new"
  126. 1160  LPRINT"category.  If you have 2 disk drives, put a blank, formatted"
  127. 1170  LPRINT"disk into drive B, type B: followed by the name of your"
  128. 1180  LPRINT"new category (e.g. B:MOVIES) and hit the Return key.  If you have"
  129. 1190  LPRINT"only one disk drive, remove the Program disk from Drive A, insert"
  130. 1200  LPRINT"the blank disk into drive A, type A: followed by the name of"
  131. 1210  LPRINT"of your new category (e.g. A:MOVIES) and press the Return key."
  132. 1211  LPRINT"If you forget to name a disk drive, the computer will assume"
  133. 1212  LPRINT"that your blank, formatted disk is in the A drive."
  134. 1220  LPRINT"If you do not enter any disk drive number or category name, "
  135. 1230  LPRINT"pressing the Return key returns you to BASIC.":LPRINT
  136. 1240  LPRINT"ADDING QUESTIONS:  The screen will clear, and the computer will"
  137. 1250  LPRINT"ask you if you wish to list, display, update, or exit from this"
  138. 1260  LPRINT"category.  Press U and the Return key.":LPRINT
  139. 1270  LPRINT"     The screen will clear, and the computer asks if you wish to"
  140. 1280  LPRINT"modify, add to, or exit the updating routine.  Press A and press"
  141. 1290  LPRINT"the Return key.":LPRINT
  142. 1300  LPRINT"     The screen clears, and the computer tells you how many "
  143. 1310  LPRINT"questions are already in that category.  If you are creating"
  144. 1320  LPRINT"a new category, this number will be 0.  If you are adding"
  145. 1330  LPRINT"questions to an existing file, this number will be greater than 1."
  146. 1340  LPRINT"We suggest that you limit the total number of questions in all of"
  147. 1350  LPRINT"your categories to 2500 because of space limitations on your disk."
  148. 1351  LPRINT
  149. 1360  LPRINT"     The computer will print"
  150. 1370  LPRINT"1  5  10  15  20  25  30  35  40  45  50  55  60  65    72"
  151. 1380  LPRINT"to let you know how many characters your"
  152. 1385  LPRINT"your question contains.  Type your question"
  153. 1390  LPRINT"beneath these letters and press the Return key.  Do not exceed"
  154. 1400  LPRINT"72 characters, including punctuation and spaces, for your question"
  155. 1410  LPRINT"(again, space limitations).  Questions need not end in a question"
  156. 1420  LPRINT"mark if you're stuck for space.  You can also be creative with"
  157. 1421  LPRINT"punctuation and blank spaces to further help.":LPRINT
  158. 1430  LPRINT"     The computer will prompt you for the answer, and print"
  159. 1440  LPRINT"1  5  10  15  20  25  30  35  40  45  50  56"
  160. 1450  LPRINT"to let you see how many characters your answer contains."
  161. 1455  LPRINT"Type your answer beneath these numbers and press the Return key."
  162. 1460  LPRINT"Please do not exceed 56 characters for your answer.  The computer"
  163. 1470  LPRINT"will let you know if you exceed these limits."
  164. 1480  LPRINT
  165. 1490  LPRINT"     After you have pressed the Return key, the computer will tell"
  166. 1500  LPRINT"you how many questions are now in the category, and ask you to"
  167. 1510  LPRINT"enter another question.  This cycle continues until you type X"
  168. 1520  LPRINT"and press the Return key.":LPRINT
  169. 1530  LPRINT"     If you press X, the computer asks you if you wish to Modify,"
  170. 1540  LPRINT"Add, or Exit the question-entry routine.  To Exit, press X and the"
  171. 1550  LPRINT"Return key.  The computer will tell you if you pressed the wrong"
  172. 1560  LPRINT"key and ask you to try again.  After you press X, the computer"
  173. 1570  LPRINT"asks you if you wish to List, Display, Update, or Exit this"
  174. 1580  LPRINT"category.  To Exit, type X and press the Return key.  As its last"
  175. 1590  LPRINT"step, the computer will ask if you wish to edit another file."
  176. 1600  LPRINT"If you do, go back to the instructions for CATEGORY NAME and follow"
  177. 1610  LPRINT"those procedures.  To exit the program entirely, press the Return"
  178. 1620  LPRINT"key.  The computer will tell you that it has saved your category"
  179. 1630  LPRINT"onto the Questions disk and that you are back in BASIC.  From here,"
  180. 1640  LPRINT"you can program in BASIC, play Trivial Towers using your new"
  181. 1650  LPRINT"questions, go back into the editing program TTENTER, or remove your"
  182. 1660  LPRINT"disks and turn off the computer.":LPRINT
  183. 1670  LPRINT"CORRECTING A QUESTION OR AN ANSWER:  If you make a mistake typing"
  184. 1680  LPRINT"or further research indicates that you have misstated a question"
  185. 1690  LPRINT"or an answer, corrections are a simple matter.  After starting"
  186. 1700  LPRINT"TTENTER (see first paragraph of these directions), tell the "
  187. 1710  LPRINT"computer the disk drive and name of the category to be corrected"
  188. 1720  LPRINT"(e.g.  B:MOVIES). Type U to Update when asked if you want to List,"
  189. 1730  LPRINT"Display, Update, or Exit that category.  Answer M when asked if"
  190. 1740  LPRINT"if you want to Modify, Add, or Exit the Update routine.":LPRINT
  191. 1750  LPRINT"     At this point, the computer will tell you how many questions"
  192. 1760  LPRINT"have been written for this category, and ask for the number of the"
  193. 1770  LPRINT"question-answer pair to be changed.  (If you don't know the"
  194. 1780  LPRINT"specific number, enter a number less than 1, and refer to the "
  195. 1790  LPRINT"Listing and Displaying sections below.)  Enter that number and"
  196. 1800  LPRINT"press the Return key.":LPRINT
  197. 1810  LPRINT"     The screen clears and the computer lists the question as it"
  198. 1820  LPRINT"presently resides in memory, and prompts you for a new phrasing"
  199. 1830  LPRINT"of the question.  Type the new question below the 1-72 number"
  200. 1840  LPRINT"scale.  Even if you do not wish to change the question's wording,"
  201. 1850  LPRINT"type the question as is (a blank will otherwise be placed onto"
  202. 1860  LPRINT"the disk in place of the original question).  Press the Return key."
  203. 1870  LPRINT
  204. 1880  LPRINT"     The computer then shows the current answer and asks for its"
  205. 1890  LPRINT"update.  Type the new answer beneath the 1-56 number scale (or"
  206. 1900  LPRINT"type the old answer if no changes are to be made) and press the"
  207. 1910  LPRINT"Return key.":LPRINT
  208. 1920  LPRINT"     The computer stores the new question and answer on the disk,"
  209. 1930  LPRINT"and asks you if you wish to change another question.  If you do"
  210. 1940  LPRINT"not, enter a number less than 1, and backtrack to BASIC as"
  211. 1950  LPRINT"previously described in the Adding Questions section.":LPRINT
  212. 1960  LPRINT"     If you discover that you do not want to modify a specific"
  213. 1970  LPRINT"question and answer pair, type an X and press the Return key"
  214. 1980  LPRINT"when prompted for the new question.":LPRINT
  215. 1990  LPRINT"     You cannot delete a question and answer pair per se.  The"
  216. 2000  LPRINT"computer will put a blank question and answer onto the Questions"
  217. 2010  LPRINT"disk, and use it during the game when Trivial Towers calls up that"
  218. 2020  LPRINT"number.  Of course, if you want to, you can use these blanks as"
  219. 2030  LPRINT"free towers for the players lucky enough to land on them by typing"
  220. 2040  LPRINT"Y when asked if the question was correctly answered.":LPRINT
  221. 2050  LPRINT"DISPLAYING QUESTIONS AND ANSWERS ON THE SCREEN:  After you have"
  222. 2060  LPRINT"written several questions and answers, you may wish to check your"
  223. 2070  LPRINT"work.  To do so, you can display question-answer pairs on the"
  224. 2080  LPRINT"screen or print out some or all of the questions and answers"
  225. 2090  LPRINT"(see Printing Questions and Answers section below).":LPRINT
  226. 2100  LPRINT"    To display question-answer pairs on the screen, choose the"
  227. 2110  LPRINT"disk drive and category to be displayed (see the Category Name"
  228. 2120  LPRINT"section above). Press D and the Return key when asked if you"
  229. 2130  LPRINT"wish to List, Display, Update, or Exit that category.  The"
  230. 2140  LPRINT"computer will clear the screen, tell you how many questions are"
  231. 2150  LPRINT"in that category, and ask you for the number of the question-answer"
  232. 2160  LPRINT"pair you wish to display.  Enter that number (the computer will"
  233. 2170  LPRINT"ask you to try again if you enter too high a number) and hit the"
  234. 2180  LPRINT"Return key.  The computer will clear the screen and display that"
  235. 2190  LPRINT"question-answer pair.  Press the Return key and the cycle will"
  236. 2200  LPRINT"repeat.":LPRINT
  237. 2210  LPRINT"     To quit displaying pairs, enter a number less than 1 when the"
  238. 2220  LPRINT"computer asks for a number.  You can backtrack to BASIC from"
  239. 2230  LPRINT"there.":LPRINT
  240. 2240  LPRINT"PRINTING OUT YOUR QUESTIONS:  To further check your work, you can"
  241. 2250  LPRINT"print out any or all of the question-answer pairs for a given"
  242. 2260  LPRINT"category.  Turn on your printer and pick the disk drive and"
  243. 2270  LPRINT"category to be printed after loading TTENTER.  Enter L and press"
  244. 2280  LPRINT"the Return key when asked if you want to List, Display, Update,"
  245. 2290  LPRINT"or Exit from that category.":LPRINT
  246. 2300  LPRINT"     The computer will prompt you for the number of the first"
  247. 2310  LPRINT"question-answer pair to be printed.  Enter that number and press"
  248. 2320  LPRINT"Return.  The computer will ask you for the number of the last"
  249. 2330  LPRINT"question-answer pair to be printed.  Enter that number and press"
  250. 2340  LPRINT"the Return key.  Pressing Return without entering a number exits"
  251. 2350  LPRINT"the Listing procedure, as does hitting a zero.":LPRINT
  252. 2360  LPRINT"     Press the return key after making sure that the printer is on."
  253. 2370  LPRINT
  254. 2380  LPRINT"     After printing the requested question-answer pairs, the"
  255. 2390  LPRINT"computer returns you to the List, Display, Update, Exit prompt."
  256. 2400  LPRINT"You can backtrack to BASIC from there.":LPRINT:LPRINT:LPRINT
  257. 2410  LPRINT"     Vinyard Software will continue to make improvements on "
  258. 2420  LPRINT"Trivial Towers, including expanding the game rules, modifying the"
  259. 2430  LPRINT"graphics, animation, and sound, writing new Question disks,"
  260. 2435  LPRINT"and configuring the game to run on other computers."
  261. 2440  LPRINT"Please write us with your comments about how Trivial Towers can"
  262. 2450  LPRINT"further serve your entertainment needs."
  263.